home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / C / GCC / V2-4-5 / GCC2 / Examples / c / Example1b < prev    next >
Text File  |  1994-08-12  |  167b  |  14 lines

  1. #include <stdio.h>
  2.  
  3. #include "Example1c.h"
  4.  
  5. void
  6. example1b(void)
  7.  
  8. {
  9. printf("This is example 1 : example1b()\n");
  10. example1c();
  11. printf("example1b (again)\n");
  12. return;
  13. }
  14.